/* ==== Base reset-ish ==== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #0f172a;
  background: #ffffff;
}

/* ==== Layout shell ==== */

.shell {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.shell--nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
}

.shell--hero {
  padding: 3rem 1.25rem 3.5rem;
}

/* ==== Header / Nav ==== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fffffff0;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5e7eb;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #f97316;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fefce8;
  font-weight: 800;
  font-size: 0.9rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-title {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-tagline {
  font-size: 0.7rem;
  color: #64748b;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.nav-links a {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  color: #475569;
  text-decoration: none;
}

.nav-links a:hover {
  background: #f1f5f9;
  color: #0f172a;
}

.nav-links a.active {
  background: #0f172a;
  color: #f9fafb;
}

/* ==== Hero ==== */

.hero {
  background: radial-gradient(circle at top left, #fff7ed, #ffffff 50%);
  border-bottom: 1px solid #e5e7eb;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: #f97316;
  font-weight: 600;
}

.hero-title {
  margin: 0.5rem 0 0.25rem;
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero-lede {
  margin: 0.75rem 0 1.25rem;
  max-width: 40rem;
  color: #475569;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero-subcopy {
  max-width: 40rem;
  color: #64748b;
  font-size: 0.9rem;
}

/* ==== Buttons ==== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn--primary {
  background: #f97316;
  border-color: #f97316;
  color: #fefce8;
}

.btn--primary:hover {
  background: #ea580c;
  border-color: #ea580c;
}

.btn--ghost {
  background: #ffffff;
  border-color: #e5e7eb;
  color: #0f172a;
}

.btn--ghost:hover {
  background: #f9fafb;
}

/* ==== Sections ==== */

.section {
  padding: 2.75rem 0 2.75rem;
}

.section--soft {
  background: #f9fafb;
}

.section--feature {
  border-bottom: 1px solid #e5e7eb;
}

.section-header {
  margin-bottom: 1.8rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  color: #f97316;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.section-title {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-intro {
  margin: 0.6rem 0 0;
  max-width: 38rem;
  font-size: 0.95rem;
  color: #64748b;
}

/* ==== Feature block ==== */

.feature-body {
  max-width: 40rem;
  font-size: 0.95rem;
  color: #475569;
}

.feature-body p {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.feature-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: #f97316;
  text-decoration: none;
}

.feature-link:hover {
  text-decoration: underline;
}

/* ==== Cards / grids ==== */

.card-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.card {
  background: #ffffff;
  border-radius: 1rem;
  border: 1px solid #e5e7eb;
  padding: 1.25rem 1.3rem;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.section--soft .card {
  background: #ffffff;
}

.card-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9a3412;
  margin-bottom: 0.4rem;
}

.card-title {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.card-meta {
  margin: 0;
  font-size: 0.8rem;
  color: #6b7280;
}

.card-text {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: #4b5563;
}

/* ==== About layout ==== */

.about-layout {
  display: grid;
  gap: 1.8rem;
}

@media (min-width: 768px) {
  .about-layout {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  }
}

.about-main {
  font-size: 0.95rem;
  color: #475569;
}

.about-main p {
  margin: 0 0 0.9rem;
}

.about-aside {
  border-radius: 0.9rem;
  border: 1px solid #e5e7eb;
  padding: 1.15rem 1.2rem;
  background: #f9fafb;
}

.about-aside h3 {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.about-aside ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-aside li {
  font-size: 0.9rem;
  color: #4b5563;
  margin-bottom: 0.5rem;
}

/* ==== Contact / newsletter ==== */

.contact-layout {
  display: grid;
  gap: 1.8rem;
}

@media (min-width: 768px) {
  .contact-layout {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
  }
}

.contact-block h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
}

.contact-block p {
  font-size: 0.9rem;
  color: #475569;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.form label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #475569;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.form input[type="email"] {
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  padding: 0.5rem 0.9rem;
  font-size: 0.9rem;
}

.form input[type="email"]:focus-visible {
  outline: 2px solid #fb923c;
  outline-offset: 1px;
}

.contact-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: #f97316;
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
}

/* ==== Footer ==== */

.site-footer {
  border-top: 1px solid #e5e7eb;
  background: #f9fafb;
  padding: 1.8rem 0;
  margin-top: 2.5rem;
}

.footer-layout {
  font-size: 0.8rem;
  color: #6b7280;
}

.footer-small {
  margin-top: 0.35rem;
  max-width: 40rem;
}
